Computer Vision Client (preview:3.0)

2025/10/21 • 2 deleted methods

Read (removed)
Description Use this interface to get the result of a Read operation, employing the state-of-the-art Optical Character Recognition (OCR) algorithms optimized for text-heavy documents. When you use the Read interface, the response contains a field called 'Operation-Location'. The 'Operation-Location' field contains the URL that you must use for your 'GetReadResult' operation to access OCR results.​
Reference Link ¶

⚼ Request

POST:  /read/analyze
{
language: string ,
ImageUrl:
{
url: string ,
}
,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
code: enum ,
message: string ,
requestId: string ,
}
GetReadResult (removed)
Description This interface is used for getting OCR results of Read operation. The URL to this interface should be retrieved from 'Operation-Location' field returned from Read interface.
Reference Link ¶

⚼ Request

GET:  /read/analyzeResults/{operationId}
{
operationId: string ,
}

⚐ Response (200)

{
status: enum ,
createdDateTime: string ,
lastUpdatedDateTime: string ,
analyzeResult:
{
version: string ,
readResults:
[
{
page: integer ,
language: string ,
angle: number ,
width: number ,
height: number ,
unit: enum ,
lines:
[
{
language: string ,
boundingBox:
[
number ,
]
,
text: string ,
words:
[
{
boundingBox:
[
number ,
]
,
text: string ,
confidence: number ,
}
,
]
,
}
,
]
,
}
,
]
,
}
,
}

⚐ Response (default)

{
code: enum ,
message: string ,
requestId: string ,
}